home *** CD-ROM | disk | FTP | other *** search
- property pMyListPosition, pWidth, pHeight, pMyRect, pMyState, pMyPoint, pMyImage, pBlendLevel
-
- on new me, listPosition
- pMyListPosition = listPosition
- pMyImage = member("photos_frame").image.duplicate()
- pWidth = pMyImage.width
- pHeight = pMyImage.height
- pMyRect = pMyImage.rect
- pMyState = #birth
- pBlendLevel = 0
- return me
- end
-
- on movePhotosFrame me
- case pMyState of
- #birth:
- if pBlendLevel < 100 then
- pBlendLevel = pBlendLevel + 2
- else
- pMyState = #idle
- end if
- #idle:
- end case
- end
-